home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
PROGNG_C
/
TPTC17GS.LZH
/
FTOA.INC
< prev
next >
Wrap
Text File
|
1988-03-25
|
189b
|
16 lines
(*
* convert floating to ascii
*
*)
function ftoa(f: real; width,dec: integer): anystring;
var
buf: anystring;
begin
str(f:width:dec,buf);
ftoa := buf;
end;